home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / program files / Borland / Delphi6 / Demos / Football / Football.dpr < prev    next >
Encoding:
Text File  |  2001-05-22  |  282 b   |  16 lines

  1. program Football;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'Main.pas' {MainForm},
  6.   about in 'about.pas' {AboutForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TMainForm, MainForm);
  13.   Application.CreateForm(TAboutForm, AboutForm);
  14.   Application.Run;
  15. end.
  16.